home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / EDUCTORY / MAPIT1.LZH / INSTALL.BAT < prev    next >
DOS Batch File  |  1992-09-11  |  1KB  |  47 lines

  1. @echo off
  2. rem  install.bat  -  MAPIT shareware installation utility.
  3. rem
  4. rem  usage:  install            (Assumes from drive A:)
  5. rem           or
  6. rem         install  X:
  7. rem
  8. cls
  9. echo            MAPIT Shareware Installation Utility
  10. echo . 
  11. echo MAPIT is a graphics notepad enabling you to investigate, analyze, 
  12. echo organize, record, track, reproduce, and communicate your graphical 
  13. echo and textual data and concepts in pictures as well as words.  A
  14. echo powerful reference tool, MAPIT is a wealth of information and just 
  15. echo plain fun to use. 
  16. echo .                                        
  17. echo This install program will copy MAPIT to your CURRENT DRIVE and DIRECTORY
  18. echo unless you Control-C out now.  You may want to create the temporary
  19. echo directory MAPIT to hold the data.
  20. echo .
  21. echo        mkdir MAPIT
  22. echo        cd MAPIT
  23. echo        A:install             (If your installation drive is A:)
  24. echo        or
  25. echo        X:install  X:         (if your installation drive is X:)
  26. echo .
  27. echo Please note:  MAPIT requires a 386SX-class computer with 512K memory,
  28. echo an EGA or VGA display, and a MOUSE.
  29. echo .
  30. if %1x == x goto INSTALL_A
  31. echo on
  32. pause  Place MAPIT disk 1 into drive %1
  33. @echo off
  34. copy %1*.* >nul
  35. installx %1
  36. rem  Shouldn't get to this point.
  37. goto FINI
  38. rem
  39. :INSTALL_A
  40. echo on
  41. pause  Place MAPIT disk 1 into drive A:
  42. @echo off
  43. copy A:*.* >nul
  44. installx A:
  45. rem
  46. :FINI
  47.